Angular / Basics / New Project
Create New Project
-
Development Environment
1. Install Visual Studio Code
2. Install Package Manager
Go to the nodejs site https://nodejs.org/en/ 3.Install Angular CLI (using cmd)
npm i -g @angular/cli@latest -
Create and run angular project
1. Create angular project
ng new [PROJECT_NAME] 2. Run the project
cd [PROJECT_NAME] ng serve --open or ng serve --host 0.0.0.0 -port 4205